home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Process / Clone / clone-bars next >
Text File  |  1998-10-23  |  1KB  |  31 lines

  1. clone-bars from-section &rest begin end to-section
  2.  
  3. This one enables to make direct copies of a section subranges. The begin end range (bars) of the from-section are cloned to a new section, which has only these two bars. All classes are cloned at once.
  4.  
  5. This function is useful if you are working with a section which produces nice material lets say within bars 7 to 9, and you don't want to have the trouble to figure out what is exactly happening there. Instead you'll just clone these bars into a new section, which you can then play multiple times (loops).
  6.  
  7. (clone-bars sect-a 
  8.    7 9 superloop
  9. )
  10.  
  11. Play it four times.
  12.  
  13. (play-file-p "-temp"
  14.    all-instruments '(superloop superloop superloop superloop)
  15. )
  16.  
  17. You can have multiple source ranges as well.
  18.  
  19. (clone-bars sect-a 
  20.    1 3 sect-a-13
  21.    3 5 sect-a-35
  22.    5 7 sect-a-57
  23.    7 9 sect-a-79
  24.    9 17 sect-b
  25. )
  26.  
  27. (play-file-p "-temp"
  28.    all-instruments '(sect-a-13 sect-a-13 sect-a-35 sect-a-35
  29.                      sect-a-57 sect-a-57 sect-a-79 sect-a-79)
  30. )
  31.